home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Interfaces / PInterfaces / OSAComp.p < prev    next >
Encoding:
Text File  |  1994-11-11  |  1.6 KB  |  77 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        OSAComp.p
  3.  
  4.      Copyright:    © 1984-1994 by Apple Computer, Inc.
  5.                  All rights reserved.
  6.  
  7.      Version:    Universal Interfaces 2.0a3  ETO #16, MPW prerelease.  Friday, November 11, 1994. 
  8.  
  9.      Bugs?:        If you find a problem with this file, send the file and version
  10.                  information (from above) and the problem description to:
  11.  
  12.                      Internet:    apple.bugs@applelink.apple.com
  13.                      AppleLink:    APPLE.BUGS
  14.  
  15. }
  16.  
  17. {$IFC UNDEFINED UsingIncludes}
  18. {$SETC UsingIncludes := 0}
  19. {$ENDC}
  20.  
  21. {$IFC NOT UsingIncludes}
  22.  UNIT OSAComp;
  23.  INTERFACE
  24. {$ENDC}
  25.  
  26. {$IFC UNDEFINED __OSACOMP__}
  27. {$SETC __OSACOMP__ := 1}
  28.  
  29. {$I+}
  30. {$SETC OSACompIncludes := UsingIncludes}
  31. {$SETC UsingIncludes := 1}
  32.  
  33.  
  34. {$IFC UNDEFINED __APPLEEVENTS__}
  35. {$I AppleEvents.p}
  36. {$ENDC}
  37. {    Errors.p                                                    }
  38. {        ConditionalMacros.p                                        }
  39. {    Types.p                                                        }
  40. {    Memory.p                                                    }
  41. {        MixedMode.p                                                }
  42. {    OSUtils.p                                                    }
  43. {    Events.p                                                    }
  44. {        Quickdraw.p                                                }
  45. {            QuickdrawText.p                                        }
  46. {    EPPC.p                                                        }
  47. {        PPCToolbox.p                                            }
  48. {            AppleTalk.p                                            }
  49. {        Processes.p                                                }
  50. {            Files.p                                                }
  51. {    Notification.p                                                }
  52.  
  53. {$IFC UNDEFINED __OSA__}
  54. {$I OSA.p}
  55. {$ENDC}
  56. {    AEObjects.p                                                    }
  57. {    Components.p                                                }
  58.  
  59. {$PUSH}
  60. {$ALIGN MAC68K}
  61. {$LibExport+}
  62.  
  63. FUNCTION OSAGetStorageType(scriptData: Handle; VAR dscType: DescType): OSErr;
  64. FUNCTION OSAAddStorageType(scriptData: Handle; dscType: DescType): OSErr;
  65. FUNCTION OSARemoveStorageType(scriptData: Handle): OSErr;
  66.  
  67. {$ALIGN RESET}
  68. {$POP}
  69.  
  70. {$SETC UsingIncludes := OSACompIncludes}
  71.  
  72. {$ENDC} {__OSACOMP__}
  73.  
  74. {$IFC NOT UsingIncludes}
  75.  END.
  76. {$ENDC}
  77.